home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / BBS / EZY120_1.ZIP / STRUCT.ARJ / CLIB.ARJ / STR1.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1996-03-09  |  232 b   |  9 lines

  1. #include <dir.h>
  2.  
  3. void ForceExtension(char *Path,char *Extension)
  4. {
  5.   char fDrive[MAXDRIVE], fDir[MAXDIR], fFile[MAXFILE], fExt[MAXEXT];
  6.   fnsplit(Path,fDrive,fDir,fFile,fExt);
  7.   fnmerge(Path,fDrive,fDir,fFile,Extension);
  8. }
  9.